home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / gentoo_GLSA-200409-21.nasl < prev    next >
Text File  |  2005-03-31  |  4KB  |  84 lines

  1. # This script was automatically generated from 
  2. #  http://www.gentoo.org/security/en/glsa/glsa-200409-21.xml
  3. # It is released under the Nessus Script Licence.
  4. # The messages are release under the Creative Commons - Attribution /
  5. # Share Alike license. See http://creativecommons.org/licenses/by-sa/2.0/
  6. #
  7. # Avisory is copyright 2001-2004 Gentoo Foundation, Inc.
  8. # GLSA2nasl Convertor is copyright 2004 Michel Arboi
  9.  
  10. if (! defined_func('bn_random')) exit(0);
  11.  
  12. if (description)
  13. {
  14.  script_id(14766);
  15.  script_version("$Revision: 1.1 $");
  16.  script_xref(name: "GLSA", value: "200409-21");
  17.  script_cve_id("CAN-2004-0747", "CAN-2004-0748", "CAN-2004-0751", "CAN-2004-0786", "CAN-2004-0809");
  18.  
  19.  desc = 'The remote host is affected by the vulnerability described in GLSA-200409-21
  20. (Apache 2, mod_dav: Multiple vulnerabilities)
  21.  
  22.  
  23.     A potential infinite loop has been found in the input filter of mod_ssl
  24.     (CAN-2004-0748) as well as a possible segmentation fault in the
  25.     char_buffer_read function if reverse proxying to a SSL server is being used
  26.     (CAN-2004-0751). Furthermore, mod_dav, as shipped in Apache httpd 2 or
  27.     mod_dav 1.0.x for Apache 1.3, contains a NULL pointer dereference which can
  28.     be triggered remotely (CAN-2004-0809). The third issue is an input
  29.     validation error found in the IPv6 URI parsing routines within the apr-util
  30.     library (CAN-2004-0786). Additionally a possible buffer overflow has been
  31.     reported when expanding environment variables during the parsing of
  32.     configuration files (CAN-2004-0747).
  33.   
  34. Impact
  35.  
  36.     A remote attacker could cause a Denial of Service either by aborting a SSL
  37.     connection in a special way, resulting in CPU consumption, by exploiting
  38.     the segmentation fault in mod_ssl or the mod_dav flaw. A remote attacker
  39.     could also crash a httpd child process by sending a specially crafted URI.
  40.     The last vulnerabilty could be used by a local user to gain the privileges
  41.     of a httpd child, if the server parses a carefully prepared .htaccess file.
  42.   
  43. Workaround
  44.  
  45.     There is no known workaround at this time.
  46.   
  47. References:
  48.     http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2004-0747
  49.     http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2004-0748
  50.     http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2004-0751
  51.     http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2004-0786
  52.     http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2004-0809
  53.  
  54.  
  55. Solution: 
  56.     All Apache 2 users should upgrade to the latest version:
  57.     # emerge sync
  58.     # emerge -pv ">=net-www/apache-2.0.51"
  59.     # emerge ">=net-www/apache-2.0.51"
  60.     All mod_dav users should upgrade to the latest version:
  61.     # emerge sync
  62.     # emerge -pv ">=net-www/mod_dav-1.0.3-r2"
  63.     # emerge ">=net-www/mod_dav-1.0.3-r2"
  64.   
  65.  
  66. Risk factor : Medium
  67. ';
  68.  script_description(english: desc);
  69.  script_copyright(english: "(C) 2004 Michel Arboi");
  70.  script_name(english: "[GLSA-200409-21] Apache 2, mod_dav: Multiple vulnerabilities");
  71.  script_category(ACT_GATHER_INFO);
  72.  script_family(english: "Gentoo Local Security Checks");
  73.  script_dependencies("ssh_get_info.nasl");
  74.  script_require_keys('Host/Gentoo/qpkg-list');
  75.  script_summary(english: 'Apache 2, mod_dav: Multiple vulnerabilities');
  76.  exit(0);
  77. }
  78.  
  79. include('qpkg.inc');
  80. if (qpkg_check(package: "net-www/apache", unaffected: make_list("ge 2.0.51", "lt 2.0"), vulnerable: make_list("lt 2.0.51")
  81. )) { security_warning(0); exit(0); }
  82. if (qpkg_check(package: "net-www/mod_dav", unaffected: make_list("ge 1.0.3-r2"), vulnerable: make_list("le 1.0.3-r1")
  83. )) { security_warning(0); exit(0); }
  84.